home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / PRINTF2.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  205 b   |  11 lines

  1. /*  printf2.c, from p.451 of Turbo C Bible  */
  2. #include <stdio.h>
  3. main()
  4. {
  5.     int i;
  6.     printf("Table of squares\n");
  7.     for (i = 1; i <= 10; i++)
  8.     {
  9.     printf("%4d\t%6d\n", i, i*i);
  10.     }
  11. }